-
Notifications
You must be signed in to change notification settings - Fork 226
Add galexie service for local ledger meta store #870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request adds galexie service support to quickstart for local network development, enabling developers to generate and test against local meta lakes. Galexie publishes ledger metadata to a filesystem datastore and serves it via nginx at /meta-archive.
Key changes:
- Adds galexie binary built from source in Dockerfile
- Implements galexie service configuration with filesystem datastore
- Enables service with
--enable galexieflag (local network only)
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| start | Adds galexie environment variable, initialization function, startup logic, validation, and argument processing |
| Dockerfile | Adds galexie builder stage using golang:1.24-trixie and copies binary to quickstart image |
| images.json | Adds galexie dependency from stellar/stellar-galexie repository across all image configurations |
| local/galexie/etc/galexie.toml | Configures galexie with filesystem datastore, admin port, and stellar-core connection |
| common/galexie/bin/start | Provides startup script that executes galexie append command with config |
| local/supervisor/etc/supervisord.conf.d/galexie.conf | Supervisor configuration for galexie service with autostart=false |
| local/supervisor/etc/supervisord.conf.d/meta-archive.conf | Supervisor configuration for meta-archive HTTP server with autostart=true |
| local/nginx/etc/conf.d/meta-archive.conf | Nginx location block to proxy /meta-archive requests to the meta-archive service |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
What
Add galexie as an optional service in quickstart for local networks. Build galexie from source in the Dockerfile, configure it to publish ledger metadata to a filesystem datastore, and serve the meta archive via nginx at /meta-archive. Enable with --enable galexie flag.
Why
Developers building solutions against mainnet meta lakes generated by galexie have no way to test locally with quickstart. This enables local meta lake generation for development and testing workflows.
Close #835
Dependent on:
Todo